home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Super Platinum 8
/
Shareware Super Platinum 8.iso
/
mac
/
PROGTOOL
/
FGL304E.ZIP;1
/
EXPAS.ARJ
/
FGDOC
/
EXAMPLES
/
PASCAL
/
06-16.PAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1994-01-24
|
395 b
|
20 lines
program main;
uses fgmain, fgmisc;
var
matrix : array [0..7] of byte;
old_mode : integer;
begin
old_mode := fg_getmode;
fg_setmode(19);
matrix[0] := 15; matrix[3] := 15; matrix[4] := 15; matrix[7] := 15;
matrix[1] := 9; matrix[2] := 9; matrix[5] := 9; matrix[6] := 9;
fg_drect(0,49,0,49,matrix);
fg_waitkey;
fg_setmode(old_mode);
fg_reset;
end.